home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / bestutil.zip / MOVE.DOC < prev    next >
Text File  |  1984-05-21  |  2KB  |  48 lines

  1.                               MOVE
  2.  
  3.         MOVE is sort of a cross between COPY and VDEL.
  4.         PC DOS version 2.00 or greater is required.
  5.         Options may be preceded by "/" or by " -".
  6.  
  7.  
  8.         The following is produced by entering MOVE > MOVE.DOC --
  9.  
  10.             [MOVE Version 1.00]
  11.             The MOVE utility is a COPY which prompts at each file.
  12.  
  13.             Syntax: 
  14.               MOVE [SourceDir]FileSpec [TargetDir] [OptionList]
  15.  
  16.             OptionsList: 
  17.               /Erase  -Erase  Erase each file after successful copy.
  18.               /Terse  -Terse  Suppress version message, instructions.
  19.               /Yes    -Yes    Automatic "Yes" response to each query.
  20.  
  21.             Public Domain 1984 by Lewis Haupt
  22.             P.O.Box 25363, Houston, Tx  77265
  23.  
  24.         Examples --
  25.             -- Copy using full directory specifications.
  26.             C> MOVE C:\DIRA\*.* C:\DIRB:  
  27.  
  28.             [MOVE Version 1.00]
  29.             Press Y to copy, N to skip, ESC to stop.
  30.  
  31.                     Copy ABCD.DOC? Yes
  32.                     Copy EDGHI.DOC? No
  33.                     Copy JKL.DOC? Yes
  34.                     Copy MNOP.DOC? Stop
  35.  
  36.             -- Copy from A: to current disk and directory.
  37.             -- Delete each file after it's moved.
  38.  
  39.             C> MOVE A:*.* /E
  40.             [MOVE Version 1.00]
  41.             Press Y to copy, N to skip, ESC to stop.
  42.  
  43.                     Copy and erase ABCD.DOC? Yes
  44.                     Copy and erase EDGHI.DOC? No
  45.                     Copy and erase JKL.DOC? Yes
  46.                     Copy and erase MNOP.DOC? Stop
  47. 
  48.